🛠️ All DevTools
Showing 681–700 of 4311 tools
Last Updated
April 24, 2026 at 04:00 PM
TheCraigHewitt/seomachine
GitHub TrendingA specialized Claude Code workspace for creating long-form, SEO-optimized blog content for any business. This system helps you research, write, analyze, and optimize content that ranks well and serves your target audience.
Wikipedia in read-only mode following mass admin account compromise
Hacker News (score: 619)Wikipedia in read-only mode following mass admin account compromise <a href="https://wikipediocracy.com/forum/viewtopic.php?f=8&t=14555" rel="nofollow">https://wikipediocracy.com/forum/viewtopic.php?f=8&t=14555</a><p><a href="https://en.wikipedia.org/wiki/Wikipedia:Village_pump_(technical)#Meta-Wiki_compromised" rel="nofollow">https://en.wikipedia.org/wiki/Wikipedia:Village_pump_(techni...</a><p><a href="https://old.reddit.com/r/wikipedia/comments/1rllcdg/megathread_wikimedia_wikis_locked_accounts/" rel="nofollow">https://old.reddit.com/r/wikipedia/comments/1rllcdg/megathre...</a>
Show HN: Jido 2.0, Elixir Agent Framework
Hacker News (score: 23)Show HN: Jido 2.0, Elixir Agent Framework Hi HN!<p>I'm the author of an Elixir Agent Framework called Jido. We reached our 2.0 release this week, shipping a production-hardened framework to build, manage and run Agents on the BEAM.<p>Jido now supports a host of Agentic features, including:<p>- Tool Calling and Agent Skills - Comprehensive multi-agent support across distributed BEAM processes with Supervision - Multiple reasoning strategies including ReAct, Chain of Thought, Tree of Thought, and more - Advanced workflow capabilities - Durability through a robust Storage and Persistence layer - Agentic Memory - MCP and Sensors to interface with external services - Deep observability and debugging capabilities, including full stack OTel<p>I know Agent Frameworks can be considered a bit stale, but there hasn't been a major release of a framework on the BEAM. With a growing realization that the architecture of the BEAM is a good match for Agentic workloads, the time was right to make the announcement.<p>My background is enterprise engineering, distributed systems and Open Source. We've got a strong and growing community of builders committed to the Jido ecosystem. We're looking forward to what gets built on top of Jido!<p>Come build agents with us!
The IRIX 6.5.7M (sgi) source code
Hacker News (score: 14)The IRIX 6.5.7M (sgi) source code
Rising carbon dioxide levels now detected in human blood
Hacker News (score: 77)Rising carbon dioxide levels now detected in human blood
Ten years of deploying to production
Hacker News (score: 16)[Other] Ten years of deploying to production
Show HN: Hormuz Crisis Dashboard Real-time shipping disruption tracker
Show HN (score: 5)Show HN: Hormuz Crisis Dashboard Real-time shipping disruption tracker Built this in ~4 hours with zero coding background. Tracks a few economy angles of the largest acute shipping disruption since WWII.
Show HN: Keep large tool output out of LLM context: 3x accuracy 95% fewer tokens LLM agents often place raw JSON tool outputs directly in the prompt. After a few tool calls, earlier results get compacted or truncated and answers become incorrect or inconsistent.<p>I built Sift, a drop-in MCP gateway that stores tool outputs as local artifacts (filesystem blobs indexed in SQLite) and returns an `artifact_id` plus compact schema hints when responses are large or paginated.<p>Instead of reasoning over full JSON in the prompt, the model runs a small Python query:<p><pre><code> def run(data, schema, params): return max(data, key=lambda x: x["magnitude"])["place"] </code></pre> Query code runs in a constrained subprocess (AST/import guards + timeout/memory caps). Only the computed result is returned to the model.<p>Benchmark (Claude Sonnet 4.6, 103 questions across 12 datasets):<p>- Baseline (raw JSON in prompt): 34/103 (33%), 10.7M input tokens<p>- Sift (artifact + code query): 102/103 (99%), 489K input tokens<p>Open benchmark + MIT code: <a href="https://github.com/lourencomaciel/sift-gateway" rel="nofollow">https://github.com/lourencomaciel/sift-gateway</a><p>Install:<p><pre><code> pipx install sift-gateway sift-gateway init --from claude </code></pre> Works with Claude Code, Cursor, Windsurf, Zed, and VS Code. Existing MCP servers and tools require no changes.
Migrating from Heroku to Magic Containers
Hacker News (score: 14)Migrating from Heroku to Magic Containers
Relax NG is a schema language for XML (2014)
Hacker News (score: 37)Relax NG is a schema language for XML (2014)
KeygraphHQ/shannon
GitHub TrendingShannon Lite is a fully autonomous AI pentester for web apps and APIs. 96.15% (100/104 exploits) on a hint-free, source-aware variant of the XBOW benchmark.
Show HN: Poppy – A simple app to stay intentional with relationships
Hacker News (score: 158)Show HN: Poppy – A simple app to stay intentional with relationships I built Poppy as a side project to help people keep in touch more intentionally. Would love feedback on onboarding, reminders, and overall UX. Happy to answer questions.
Regulator contacts Meta over workers watching intimate AI glasses videos
Hacker News (score: 21)Regulator contacts Meta over workers watching intimate AI glasses videos
Package managers need to cool down
Hacker News (score: 30)[Other] Package managers need to cool down
Show HN: Potatoverse, home for your vibecoded apps
Show HN (score: 5)Show HN: Potatoverse, home for your vibecoded apps DEMO: <a href="https://tubersalltheway.top/zz/pages/auth/login" rel="nofollow">https://tubersalltheway.top/zz/pages/auth/login</a>
NRC Issues First Commercial Reactor Construction Approval in 10 Years [pdf]
Hacker News (score: 22)NRC Issues First Commercial Reactor Construction Approval in 10 Years [pdf]
BMW Group to deploy humanoid robots in production in Germany for the first time
Hacker News (score: 50)BMW Group to deploy humanoid robots in production in Germany for the first time
Compiling Match Statements to Bytecode
Hacker News (score: 14)Compiling Match Statements to Bytecode
Show HN: Qlog – grep for logs, but 100x faster
Show HN (score: 6)Show HN: Qlog – grep for logs, but 100x faster I built qlog because I got tired of waiting for grep to search through gigabytes of logs.<p>qlog uses an inverted index (like search engines) to search millions of log lines in milliseconds. It's 10-100x faster than grep and way simpler than setting up Elasticsearch.<p>Features: - Lightning fast indexing (1M+ lines/sec using mmap) - Sub-millisecond searches on indexed data - Beautiful terminal output with context lines - Auto-detects JSON, syslog, nginx, apache formats - Zero configuration - Works offline - Pure Python<p>Example: qlog index './logs/*/*.log' qlog search "error" --context 3<p>I've tested it on 10GB of logs and it's consistently 3750x faster than grep. The index is stored locally so repeated searches are instant.<p>Demo: Run `bash examples/demo.sh` to see it in action.<p>GitHub: <a href="https://github.com/Cosm00/qlog" rel="nofollow">https://github.com/Cosm00/qlog</a><p>Perfect for developers/DevOps folks who search logs daily.<p>Happy to answer questions!